home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmDAString
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "Disk array : string"
- ClientHeight = 4065
- ClientLeft = 1890
- ClientTop = 3255
- ClientWidth = 8130
- Height = 4470
- Left = 1830
- MaxButton = 0 'False
- MDIChild = -1 'True
- ScaleHeight = 4065
- ScaleWidth = 8130
- ShowInTaskbar = 0 'False
- Top = 2910
- Width = 8250
- Begin Threed.SSPanel SSPanel1
- Align = 1 'Align Top
- Height = 480
- Left = 0
- TabIndex = 2
- Top = 0
- Width = 8130
- _Version = 65536
- _ExtentX = 14340
- _ExtentY = 847
- _StockProps = 15
- ForeColor = -2147483640
- BackColor = 12632256
- Begin VB.ComboBox cmb_Function
- Height = 315
- Left = 1365
- TabIndex = 3
- Top = 90
- Width = 5415
- End
- Begin Threed.SSCommand cmdNP
- Height = 300
- Index = 1
- Left = 7770
- TabIndex = 7
- Top = 90
- Width = 255
- _Version = 65536
- _ExtentX = 450
- _ExtentY = 529
- _StockProps = 78
- Caption = ">"
- BevelWidth = 1
- Font3D = 3
- RoundedCorners = 0 'False
- Outline = 0 'False
- End
- Begin Threed.SSCommand cmdNP
- Height = 300
- Index = 0
- Left = 6930
- TabIndex = 6
- Top = 90
- Width = 255
- _Version = 65536
- _ExtentX = 450
- _ExtentY = 529
- _StockProps = 78
- Caption = "<"
- BevelWidth = 1
- Font3D = 3
- RoundedCorners = 0 'False
- Outline = 0 'False
- End
- Begin VB.Label Label2
- Caption = "&Select a function"
- Height = 255
- Left = 90
- TabIndex = 5
- Top = 120
- Width = 1275
- End
- Begin Threed.SSCommand SSCommand1
- Default = -1 'True
- Height = 300
- Left = 7245
- TabIndex = 4
- Top = 90
- Width = 465
- _Version = 65536
- _ExtentX = 820
- _ExtentY = 529
- _StockProps = 78
- Caption = "&Go"
- BevelWidth = 1
- RoundedCorners = 0 'False
- Outline = 0 'False
- End
- End
- Begin VB.Label lbl_Result
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- ForeColor = &H80000008&
- Height = 3345
- Left = 2970
- TabIndex = 1
- Top = 630
- Width = 5055
- End
- Begin VB.Label lbl_Open
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- BeginProperty Font
- name = "Courier New"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 3345
- Left = 90
- TabIndex = 0
- Top = 630
- Width = 2715
- End
- Attribute VB_Name = "frmDAString"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Option Base 1
- Private Const Iteration = 50
- Dim IsLoaded As Integer
- Dim TimerStartOk As Integer
- Dim TimerCloseOk As Integer
- Dim TimerHandle As Integer
- Dim TimerValue As Long
-
- Private Sub cmdNP_Click(Index As Integer)
- Call sub_NextPrev(cmb_Function, Index)
- End Sub
- Private Sub cmb_Function_Click()
- If (IsLoaded = False) Then Exit Sub
- Call cDisableFI(mdiT2W.Picture1)
- lbl_Result = ""
- DoEvents
- Call TestDAString(cmb_Function.ListIndex - 1)
- DoEvents
- Call cEnableFI(mdiT2W.Picture1)
- End Sub
- Private Sub Form_Activate()
- mdiT2W.Label2.Caption = cInsertBlocks(mdiT2W.Label2.Tag, "" & Iteration)
- End Sub
- Private Sub Form_Load()
- IsLoaded = False
- Show
- Call sub_Load_Combo(cmb_Function, T2WDirInst + "_dastr.t2w")
- IsLoaded = True
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- Dim intResult As Integer
- intResult = cKillFileAll("c:\t2w_tmp\dastr.tmp")
- End Sub
- Private Sub SSCommand1_Click()
- Call cmb_Function_Click
- End Sub
- Private Sub TestDAString(intManagement As Integer)
- Dim intResult As Integer
- Dim strResult As String
- Dim strOpen As String
- Dim strDisplay As String
- Dim i As Integer
- Dim DA As tagDISKARRAY
- intResult = 0
- strResult = ""
- strOpen = ""
- strDisplay = ""
-
- DA.nFilename = T2WDirTest + "\dastr.tmp"
- DA.nType = 50
- DA.nIsTyped = False
- DA.nRows = 100
- DA.nCols = 100
- DA.nSheets = 2
- Select Case intManagement
- Case True 'create
- intResult = cDACreate(DA, True)
- Case False 'use
- intResult = cDACreate(DA, False)
- Case 1 'clear all
- intResult = cDACreate(DA, False)
- If (intResult = -1) Then intResult = cDAClear(DA)
- Case 2 'clear sheet 2
- intResult = cDACreate(DA, False)
- If (intResult = -1) Then intResult = cDAClearSheet(DA, 2)
- Case 3 'clear last row
- intResult = cDACreate(DA, False)
- If (intResult = -1) Then intResult = cDAClearRow(DA, DA.nRows, 1)
- Case 4 'clear last col
- intResult = cDACreate(DA, False)
- If (intResult = -1) Then intResult = cDAClearCol(DA, DA.nCols, 1)
- Case 5 'clear last row in all sheets
- intResult = cDACreate(DA, False)
- If (intResult = -1) Then intResult = cDAClearRow(DA, DA.nRows, -1)
- Case 6 'clear last col in all sheets
- intResult = cDACreate(DA, False)
- If (intResult = -1) Then intResult = cDAClearCol(DA, DA.nCols, -1)
- End Select
- strDisplay = strDisplay & "Last intResult = " & intResult & vbCrLf & vbCrLf
- If (intResult = True) Then
-
- strOpen = strOpen & "daSize = " & DA.daSize & vbCrLf
- strOpen = strOpen & "Signature = " & DA.signature & vbCrLf
- strOpen = strOpen & "nFilename = " & Trim$(cGetInPartR(DA.nFilename, "\", True)) & vbCrLf
- strOpen = strOpen & "nType = " & DA.nType & vbCrLf
- strOpen = strOpen & "nIsTyped = " & DA.nIsTyped & vbCrLf
- strOpen = strOpen & "nRows = " & DA.nRows & vbCrLf
- strOpen = strOpen & "nCols = " & DA.nCols & vbCrLf
- strOpen = strOpen & "nSheets = " & DA.nSheets & vbCrLf
- strOpen = strOpen & "rHandle = " & DA.rHandle & vbCrLf
- strOpen = strOpen & "rElementSize = " & DA.rElementSize & vbCrLf
- strOpen = strOpen & "rFileSize = " & DA.rFileSize & vbCrLf
- strOpen = strOpen & "rParts = " & DA.rParts & vbCrLf
- strOpen = strOpen & "rRemain = " & DA.rRemain & vbCrLf
- strOpen = strOpen & "rSheetSize = " & DA.rSheetSize & vbCrLf
- strOpen = strOpen & "rTime = " & DA.rTime & vbCrLf & vbCrLf
- If (intManagement = True) Then
-
- Call cDAPut(DA, 1, 1, 1, "D:1, ABCDEFGHIJ")
- Call cDAPut(DA, 1, DA.nCols, 1, "D:1, abcdefghij")
- Call cDAPut(DA, DA.nRows, 1, 1, "D:1, OPQRSTUVWXYZ")
- Call cDAPut(DA, DA.nRows, DA.nCols, 1, "D:1, oprqstuvwxyz")
- Call cDAPut(DA, 1, 1, 2, "D:2, 1234567890")
- Call cDAPut(DA, 1, DA.nCols, 2, "D:2, 0987654321")
- Call cDAPut(DA, DA.nRows, 1, 2, "D:2, 12345ABCDE")
- Call cDAPut(DA, DA.nRows, DA.nCols, 2, "D:2, VWXYZ54321")
- End If
- strDisplay = strDisplay & "R:1 , C:1 , D:1, Value : " & Trim$(cDAGet(DA, 1, 1, 1)) & " , time : " & DA.rTime & vbCrLf
- strDisplay = strDisplay & "R:1 , C:" & DA.nCols & ", D:1, Value : " & Trim$(cDAGet(DA, 1, DA.nCols, 1)) & " , time : " & DA.rTime & vbCrLf
- strDisplay = strDisplay & "R:" & DA.nRows & ", C:1 , D:1, Value : " & Trim$(cDAGet(DA, DA.nRows, 1, 1)) & " , time : " & DA.rTime & vbCrLf
- strDisplay = strDisplay & "R:" & DA.nRows & ", C:" & DA.nCols & ", D:1, Value : " & Trim$(cDAGet(DA, DA.nRows, DA.nCols, 1)) & " , time : " & DA.rTime & vbCrLf
- strDisplay = strDisplay & "R:1 , C:1 , D:2, Value : " & Trim$(cDAGet(DA, 1, 1, 2)) & " , time : " & DA.rTime & vbCrLf
- strDisplay = strDisplay & "R:1 , C:" & DA.nCols & ", D:2, Value : " & Trim$(cDAGet(DA, 1, DA.nCols, 2)) & " , time : " & DA.rTime & vbCrLf
- strDisplay = strDisplay & "R:" & DA.nRows & ", C:1 , D:2, Value : " & Trim$(cDAGet(DA, DA.nRows, 1, 2)) & " , time : " & DA.rTime & vbCrLf
- strDisplay = strDisplay & "R:" & DA.nRows & ", C:" & DA.nCols & ", D:2, Value : " & Trim$(cDAGet(DA, DA.nRows, DA.nCols, 2)) & " , time : " & DA.rTime & vbCrLf
- End If
- Call cDAClose(DA, False)
- lbl_Open = strOpen
- lbl_Result = strDisplay
- 'time the function
- TimerHandle = cTimerOpen()
- TimerStartOk = cTimerStart(TimerHandle)
- For i = 1 To Iteration
- strResult = cDACreate(DA, False)
- Call cDAClose(DA, False)
- Next i
- mdiT2W.pnl_Timer = cTimerRead(TimerHandle)
- TimerCloseOk = cTimerClose(TimerHandle)
- End Sub
-